Thumb

C# Namespaces

1/7/2020 12:00:00 AM

Namespaces in C# are used to organize too many classes so that it can be easy to handle the application. In a simple C# program, we use System.Console where System is the namespace and Console is the class. Also Using key word use for the Namespaces. Namespace has no physical existence its logical container. In C#, global namespace is the root namespace. In this code HelloWorld is the namespace.Now given bellow the code: